home *** CD-ROM | disk | FTP | other *** search
/ CICA 1993 April / CICA MS Windows - April 1993.iso / unzipped / programr / textview / readme.txt < prev    next >
Text File  |  1991-06-12  |  4KB  |  71 lines

  1.                            The TextView DLL
  2.                                  for
  3.                               Windows 3
  4.  
  5. TextView is a system that provides a Windows 3 application with the ability to
  6. write lines of text to a window with the minimum of effort. TextView itself
  7. handles all the many operations needed to manage the window displaying the
  8. text; you need only call the function that writes the text, in exactly the
  9. same way as you would call printf in a DOS application.
  10.  
  11. You can create as many TextView windows as you require, and all will operate
  12. independently. TextView windows can be resized by the user, minimized,
  13. maximized and scrolled horizontally and vertically with no work needed by the
  14. application. They can also have File menus that notify the application when
  15. the user requests that the window contents be written to disk.
  16.  
  17. TextView windows can, of course, be used for an infinite variety of purposes.
  18. One possibility is to use TextView to provide a way of outputting tracing and
  19. debugging information when developing an application. Included with the system
  20. are the sources for a demonstration application that contain a flexible
  21. tracing system that may be incorporated into your own code.
  22.  
  23. TextView is supplied as a Dynamic Link Library or DLL. In this form it is not
  24. added to the application's code at link time, but instead is bound to it
  25. dynamically by Windows whenever an application needing it is run. All
  26. applications using TextView will share the same code segments, making it very
  27. efficient in memory utilisation.
  28.  
  29.  
  30. What you need to use TextView
  31. -----------------------------
  32.  
  33. In order to use TextView you will need to have a suitable compiler that can
  34. generate Windows 3 code, such as Microsoft C 6.0. The TextView functions
  35. follow the same conventions as used in the Windows API, and their descriptions
  36. later in this guide use the same layout as in the Microsoft Windows
  37. Programmer's Reference.
  38.  
  39. Distribution and Use of TextView
  40. --------------------------------
  41.  
  42. TextView is Copyright (c) Alan Phillips 1991. It may be freely distributed by
  43. anyone, to anyone. Apart from reasonable media and handling  costs, no  charge
  44. may  be levied  for its distribution. It may be stored on Bulletin Board
  45. systems and other archives so long as all the files comprising the original
  46. distribution are included. It may be repackaged to suit the storage
  47. conventions in use for the system concerned. It may not be distributed as part
  48. of commercial disk libraries without the prior agreement of the author.
  49.  
  50. TextView may be freely used in any non-commercial Windows application. Authors
  51. of such applications may include the TextView DLL with the products either
  52. with or without the other files comprising the full distribution set. However,
  53. such application should include in their documentation (or should display in
  54. their About dialog box or in their online help) that they are using TextView,
  55. and should list the author's copyright.
  56.  
  57. The demonstration sources supplied with TextView may be freely adapted and
  58. included in other applications as required.
  59.  
  60. Authors of ShareWare or commercial products may not use TextView without the
  61. author's written permission.
  62.  
  63. Disclaimer
  64. ----------
  65.  
  66. TextView is distributed on an as is basis. No guarantee is offered, and  none
  67. should  be inferred,  of  its correct functionality, nor of its suitability
  68. for any task whatsoever. The author accepts no liability for  any loss or
  69. damage whatsoever caused as a result of using TextView with any application,
  70. whether written by the user or a third party.
  71.